home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / vidply / vb4.shr / form2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-06-04  |  2.0 KB  |  70 lines

  1. VERSION 4.00
  2. Begin VB.Form Form2 
  3.    Caption         =   "Question??"
  4.    ClientHeight    =   1170
  5.    ClientLeft      =   1590
  6.    ClientTop       =   1515
  7.    ClientWidth     =   3540
  8.    ClipControls    =   0   'False
  9.    ControlBox      =   0   'False
  10.    Height          =   1605
  11.    Left            =   1530
  12.    LinkTopic       =   "Form2"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   1170
  16.    ScaleWidth      =   3540
  17.    Top             =   1140
  18.    Width           =   3660
  19.    Begin VB.CommandButton Command2 
  20.       Caption         =   "E&xit"
  21.       Height          =   312
  22.       Left            =   2760
  23.       TabIndex        =   4
  24.       Top             =   60
  25.       Width           =   672
  26.    End
  27.    Begin VB.CommandButton Command1 
  28.       Caption         =   "&OK"
  29.       Default         =   -1  'True
  30.       Height          =   312
  31.       Left            =   2760
  32.       TabIndex        =   3
  33.       Top             =   600
  34.       Width           =   672
  35.    End
  36.    Begin VB.TextBox txtDrive 
  37.       Height          =   288
  38.       Left            =   2160
  39.       TabIndex        =   2
  40.       Text            =   "E"
  41.       Top             =   600
  42.       Width           =   372
  43.    End
  44.    Begin VB.Label Label2 
  45.       Caption         =   "Enter Drive letter of CD-ROM:"
  46.       Height          =   252
  47.       Left            =   60
  48.       TabIndex        =   1
  49.       Top             =   660
  50.       Width           =   2172
  51.    End
  52.    Begin VB.Label Label1 
  53.       Caption         =   "Please insert Windows 95 CD-ROM into drive."
  54.       Height          =   432
  55.       Left            =   660
  56.       TabIndex        =   0
  57.       Top             =   60
  58.       Width           =   1932
  59.    End
  60. Attribute VB_Name = "Form2"
  61. Attribute VB_Creatable = False
  62. Attribute VB_Exposed = False
  63. Private Sub Command1_Click()
  64.     cDriveLetter = Left$(txtDrive.Text, 1)
  65.     Unload Form2
  66. End Sub
  67. Private Sub Command2_Click()
  68.     End
  69. End Sub
  70.